home *** CD-ROM | disk | FTP | other *** search
/ START Magazine / START VOL 4 NO 3.st / CINIT.ARC / MKPRGACC < prev    next >
Encoding:
Text File  |  1989-07-07  |  388 b   |  9 lines

  1. # The makefile I used to make the program/accessory with Laser C
  2. # The variable $(SINIT) is defined in my environment as my
  3. # startup code. After it is made this makefile copies it to the
  4. # root directory of drive C to be used as an accessory
  5.  
  6. prgacc.prg : prgacc.o
  7.     $(LINKER) -v -o prgacc.prg $(SINIT) \CC\SSTACK.O prgacc.o $(CLIB)
  8.     e:\bin\cp.ttp \start\prgacc.prg c:\prgacc.acc
  9.